Don't install CMakeLists.txt along with the headers. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@202280 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Makefile b/Makefile index 9267023..75f5a12 100644 --- a/Makefile +++ b/Makefile
@@ -33,7 +33,8 @@ # The installheaders target is used by clang's runtime/libcxx makefile. installheaders:: mkdir -p $(HEADER_DIR)/c++/v1/ext - (cd $(SRCDIRS)/include && tar cf - --exclude=support .) | \ + (cd $(SRCDIRS)/include && \ + tar cf - --exclude=support --exclude=CMakeLists.txt .) | \ (cd $(HEADER_DIR)/c++/v1 && tar xf -) chmod 755 $(HEADER_DIR)/c++/v1 chmod 644 $(HEADER_DIR)/c++/v1/*